home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-01 | 1.4 KB | 60 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-1994 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _SUCURSOR_
- #define _SUCURSOR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
- interface ODStorageUnitCursor;
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
- interface ODStorageUnit;
-
- //==============================================================================
- // ODStorageUnitCursor
- //==============================================================================
-
- interface ODStorageUnitCursor : ODObject
- {
-
- void GetProperty(out ODPropertyName propertyName);
-
- void GetValueType(out ODValueType valueType);
-
- void GetValueIndex(out ODValueIndex valueIndex);
-
- void SetProperty(in ODPropertyName propertyName);
-
- void SetValueType(in ODValueType valueType);
-
- void SetValueIndex(in ODValueIndex valueIndex);
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
- functionprefix = ODStorageUnitCursor;
- override:
- somUninit;
- releaseorder:
- reserved1,
- GetProperty,
- GetValueType,
- GetValueIndex,
- SetProperty,
- SetValueType,
- SetValueIndex;
- };
-
- #endif
- };
-
- #endif // _SUCURSOR_
-